HTMLify

index.html
Views: 120 | Author: cody
<!DOCTYPE html>
<html lang="en" >
<head>
  <meta charset="UTF-8">
  <title>Voice Recorder🎙</title>
  <link rel="stylesheet" href="./style.css">

</head>
<body>

<div class="container">
	<h1>Voice Recorder🎙</h1>
	
	<audio id="recorder" muted hidden></audio>
	
		<button id="start">Record</button>
		<button id="stop">Stop Recording</button>
	
	<h3>Saved Recording</h3>
	<audio id="player" controls></audio>
</div>

  <script  src="./script.js"></script>

</body>
</html>

Comments